20 lines
373 B
C#
20 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Subd;
|
|
|
|
public partial class UserRating
|
|
{
|
|
public int? IdFilm { get; set; }
|
|
|
|
public int? IdUser { get; set; }
|
|
|
|
public string? Reviev { get; set; }
|
|
|
|
public int? Rating { get; set; }
|
|
|
|
public virtual Film? IdFilmNavigation { get; set; }
|
|
|
|
public virtual User? IdUserNavigation { get; set; }
|
|
}
|