16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp4.Models;
|
|
|
|
public partial class Review
|
|
{
|
|
public int ReviewId { get; set; }
|
|
|
|
public sbyte Rating { get; set; }
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
public DateOnly DatePosted { get; set; }
|
|
}
|