using Koogle.Domain.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Koogle.Domain.Entities { /// /// Represents a club entity within the system. /// public class Club : BaseEntity { /// /// Name of the club. /// public string Name { get; set; } = string.Empty; /// /// the expense calculation method used by the club. /// public ExpenseCalculation ExpenseCalculation { get; set; } } }