using System;

namespace SwaggerStudy.Models
{
    public class Student
    {
        public int Id { get; set; }

        public string Name { get; set; }

        public int Age { get; set; }

        public string Address { get; set; }

        public GenderEnum Gender { get; set; } 

        public string School { get; set; }
    }
}