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