21 lines
511 B
C#
21 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Purchasing
|
|
{
|
|
[Table("RRSeries")]
|
|
public class RRSeries
|
|
{
|
|
[Key]
|
|
public byte Id { get; set; }
|
|
public long RRNo { get; set; }
|
|
public byte POTypeId { get; set; }
|
|
public string? Apps { get; set; }
|
|
}
|
|
}
|