//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace DomainModel.EventBridgeEvent
{
///
/// This class represents an S3 bucket.
///
public class Bucket
{
///
/// Gets or sets the name of the bucket.
///
public string? Name { get; set; }
}
}