Files
Hushian/Presentation/HushianWebApp/Data/Dtos/BaseDto.cs
mmrbnjd ff342a53c0 ...
2025-07-11 20:37:28 +03:30

12 lines
170 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Dtos
{
public class BaseDto
{
public int Id { get; set; }
}
}