|
namespace Yuna.Website.Server.Model
|
|
{
|
|
public class Prop
|
|
{
|
|
public long Id { get; set; }
|
|
public PropType Type { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string MeasureName { get; set; } = null!;
|
|
public string JsonValueName { get; set; } = null!;
|
|
}
|
|
}
|