Files
blazor-hrm/Data/Interfaces/IHasAutoNumber.cs
T
2026-07-21 14:08:10 +07:00

7 lines
115 B
C#

namespace Indotalent.Data.Interfaces;
public interface IHasAutoNumber
{
string? AutoNumber { get; set; }
}