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

13 lines
No EOL
172 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System;
namespace PhoenixLib.DAL
{
public interface IUuidDto : IDto
{
Guid Id { get; set; }
}
}