PIAPS_CW/DataModels/IId.cs
2024-06-04 11:03:49 +04:00

13 lines
191 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels
{
public interface IId
{
Guid Id { get; }
}
}