mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
14 lines
268 B
C#
14 lines
268 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace sodoff.Model;
|
|
public class RoomItem {
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int RoomId { get; set; }
|
|
|
|
public virtual Room Room { get; set; }
|
|
|
|
public string RoomItemData { get; set; }
|
|
}
|