Skip to content

Commit

Permalink
Setting up a GUID for the tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyveth committed Dec 12, 2023
1 parent b73e1df commit 9c860ad
Show file tree
Hide file tree
Showing 14 changed files with 2,442 additions and 43 deletions.
2 changes: 2 additions & 0 deletions WebApiScrapingData.Domain/Abstract/Identity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public abstract class Identity : ITIdentity
[DataMember(Name = DataMember.Id)]
public long Id { get; set; }

public Guid Guid { get; set; }

public string? UserCreation { get; set; }

public DateTime DateCreation { get; set; }
Expand Down
2 changes: 2 additions & 0 deletions WebApiScrapingData.Domain/Interface/ITIdentity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ namespace WebApiScrapingData.Domain.Interface
public interface ITIdentity
{
public long Id { get; set; }

public Guid Guid { get; set; }

public string? UserCreation { get; set; }

Expand Down
Loading

0 comments on commit 9c860ad

Please sign in to comment.