mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 19:12:57 +00:00
7 lines
150 B
C#
7 lines
150 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.Application.ViewModels.Tenants;
|
|
|
|
public sealed record UpdateTenantViewModel(
|
|
Guid Id,
|
|
string Name); |