13 lines
246 B
C#
Raw Permalink Normal View History

2025-12-17 11:12:13 +08:00
using YD_Event.Core.Enum;
2025-12-17 10:32:52 +08:00
2025-12-17 11:12:13 +08:00
namespace YD_Event.Core.Entities;
2025-12-17 10:32:52 +08:00
/// <summary>
/// 可用状态
/// </summary>
public interface IAvailability
{
/// <summary>
/// 可用状态
/// </summary>
AvailabilityStatus Status { get; set; }
}