KoogleApp/Koogle.Domain/Entities/Club.cs

26 lines
626 B
C#

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