Files
mixtape/zero.Core/Models/ISupportsFlavors.cs
T
2021-12-01 15:54:11 +01:00

14 lines
241 B
C#

namespace zero.Models;
public interface ISupportsFlavors
{
/// <summary>
/// Id of the entity
/// </summary>
string Id { get; set; }
/// <summary>
/// Alias of the used flavor
/// </summary>
string Flavor { get; set; }
}