using System.ComponentModel.DataAnnotations;
namespace Blahblah.FlowerStory.Server.Controller;
///
/// 事件参数
///
public record EventParameter
{
///
/// 花草唯一 id
///
[Required]
public int FlowerId { get; init; }
///
/// 事件 id
///
[Required]
public int EventId { get; init; }
///
/// 操作人姓名
///
[Required]
public string? ByUser { get; init; }
///
/// 事件备注
///
public string? Memo { get; init; }
}
///
/// 事件修改参数
///
public record EventUpdateParameter : EventParameter
{
///
/// 事件唯一 id
///
[Required]
public int Id { get; set; }
}