14 lines
296 B
C#
14 lines
296 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace shoe_store.Models;
|
|
|
|
public partial class OrderStatus
|
|
{
|
|
public int IdOrderStatus { get; set; }
|
|
|
|
public string StatusName { get; set; } = null!;
|
|
|
|
public virtual ICollection<Order> Orders { get; set; } = new List<Order>();
|
|
}
|