12 lines
348 B
C#
12 lines
348 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Hutopy.Modules.Creators.Data;
|
|
|
|
public class Presentation
|
|
{
|
|
public string Description { get; set; } = null!;
|
|
[MaxLength(2048)] public string? VideoUrl { get; set; }
|
|
[MaxLength(256)] public string? PhoneNumber { get; set; }
|
|
[MaxLength(256)] public string? Email { get; set; }
|
|
}
|