2021-11-23 15:43:21 +01:00
|
|
|
namespace zero.Models;
|
2021-11-19 14:59:24 +01:00
|
|
|
|
2021-12-01 15:54:11 +01:00
|
|
|
public interface ISupportsFlavors
|
2021-11-19 14:59:24 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Id of the entity
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-12-01 15:54:11 +01:00
|
|
|
/// Alias of the used flavor
|
2021-11-19 14:59:24 +01:00
|
|
|
/// </summary>
|
2021-12-01 15:54:11 +01:00
|
|
|
string Flavor { get; set; }
|
2021-11-19 14:59:24 +01:00
|
|
|
}
|