You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
483 B

4 years ago
using System.ComponentModel.DataAnnotations;
4 years ago
using Win_in.Sfs.Scp.WebApi.Receipts;
namespace Win_in.Sfs.Scp.WebApi.Receipts
{
4 years ago
/// <summary>
/// �ջ�������DTO(Receipt update DTO)
/// </summary>
4 years ago
public class ReceiptUpdateDTO : ReceiptCreateOrUpdateDTOBase
{
4 years ago
/// <summary>
/// ����ʱ����(Concurrency Stamp)
/// </summary>
[Display(Name = "����ʱ����(Concurrency Stamp)")]
public string ConcurrencyStamp { get; set; }
4 years ago
}
}