Files
Hushian/Presentation/HushianWebApp/Data/Dtos/BaseDto.cs

12 lines
170 B
C#
Raw Normal View History

2025-07-11 20:37:28 +03:30
using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Dtos
{
public class BaseDto
{
public int Id { get; set; }
}
}