mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
12 lines
318 B
C#
12 lines
318 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using WebApp.Entities;
|
|
|
|
namespace WebApp.DTOs;
|
|
public record class OrganisationSummaryDto
|
|
(
|
|
[Required] int? OrganisationId,
|
|
[Required][StringLength(50)] string Name,
|
|
[StringLength(500)] string Description,
|
|
[Required][StringLength(200)] string Website
|
|
);
|