Subject.cs 237 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaExample.Models;
  4. public partial class Subject
  5. {
  6. public int Id { get; set; }
  7. public string? Name { get; set; }
  8. public string? Description { get; set; }
  9. }