16 lines
311 B
C#
16 lines
311 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Portfolio.Shared.Models;
|
|
|
|
public class About {
|
|
|
|
[Key]
|
|
public int Id { get; private set; } = 0;
|
|
|
|
[MaxLength(5000)]
|
|
public required string AboutMe { get; set; }
|
|
|
|
[MaxLength(5000)]
|
|
public required string Future { get; set; }
|
|
|
|
} |