mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 02:52:56 +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); |