mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
8 lines
159 B
C#
8 lines
159 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.Shared.Tenants;
|
|
|
|
public sealed record TenantViewModel(
|
|
Guid Id,
|
|
string Name,
|
|
DateTimeOffset? DeletedAt); |