7 lines
298 B
C#
7 lines
298 B
C#
using DigitalData.Core.DTO;
|
|
|
|
namespace DigitalData.UserManager.Application.DTOs.Base
|
|
{
|
|
// TODO: use getter - setter methods for a simple inheritance.
|
|
public record BaseReadDto(int Id, string? AddedWho, DateTime? AddedWhen, string? ChangedWho, DateTime? ChangedWhen) : BaseDTO<int>(Id);
|
|
} |