// <copyright file="Bucket.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>

namespace DomainModel.EventBridgeEvent
{
    /// <summary>
    /// This class represents an S3 bucket.
    /// </summary>
    public class Bucket
    {
        /// <summary>
        /// Gets or sets the name of the bucket.
        /// </summary>
        public string? Name { get; set; }
    }
}