using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace API.Controllers.DTOs;
///
/// DTO
///
public sealed record Link(string Key, string Provider, string Url) : Identifiable(Key)
{
///
/// Name of the Provider
///
[Required]
[Description("Name of the Provider")]
public string Provider { get; init; } = Provider;
///
/// Url
///
[Required]
[Description("Url")]
public string Url { get; init; } = Url;
}