Files
ww-jst/wmsjst/JSMachine.WMS.Application/Dto/IRootDto.cs
T

14 lines
243 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
using System;
namespace JSMachine.WMS.App.Dto
{
public interface IRootDto
{
public Guid Id { get; set; }
public DateTime? CreationTime { get; set; }
public DateTime? LastModifiedTime { get; set; }
}
}