mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 10:33:43 +00:00
7 lines
128 B
C#
7 lines
128 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.Shared.Tenants;
|
|
|
|
public sealed record TenantViewModel(
|
|
Guid Id,
|
|
string Name); |