Jezzy Grey

Generation

translateFri, 17 Feb 2023

from django.db import models from django.urls import reverse import uuid class Genre(models.Model): name = models.CharField(max_length=200, help_text="Введите жанр книги") def __str__(self): return self.name

namespace ContosoUniversity.Models { public class Student { public int ID { get; set; } public string LastName { get; set; } public string FirstMidName { get; set; } public DateTime EnrollmentDate { get; set; } public ICollection<Enrollment> Enrollments { get; set; } } }

Questions about programming?Chat with your personal AI assistant