mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 00:17:12 +00:00
13 lines
No EOL
309 B
C#
13 lines
No EOL
309 B
C#
using Roadie.Library.Identity;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("submission")]
|
|
public class Submission : EntityBase
|
|
{
|
|
public ApplicationUser User { get; set; }
|
|
|
|
[Column("userId")] public int UserId { get; set; }
|
|
}
|
|
} |