server-master/srcs/PhoenixLib.DAL.Abstractions/IIntDto.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
142 B
C#

namespace PhoenixLib.DAL
{
/// <summary>
/// </summary>
public interface IIntDto : IDto
{
int Id { get; set; }
}
}