no sence code
continuous-integration/drone/push Build is passing Details

pull/188/head
Ismail TAHA JANAN 2 years ago
parent 4574e48203
commit 423965361b

@ -1,12 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace Data.EF.Dice.Faces
{
public class ColorFaceEntity
{
public Guid ID { get; set; }
public string Value { get; set; }
public void SetValue(Color c)
{
Value = c.ToString();
}
}
}

@ -3,10 +3,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Model.Dice.Faces;
using System.Drawing;
namespace Data.EF.Dice.Faces
{
public static class ColorFaceExtensions
{
/*public static ColorFace ToModel(ColorFaceEntity colorFaceEntity)
{
ColorFace colorFace = new((Color)colorFaceEntity.Value)
}*/
}
}

@ -8,5 +8,7 @@ namespace Data.EF.Dice.Faces
{
public class ImageFaceEntity
{
public Guid ID { get; set; }
public string Value { get; set; }
}
}

@ -8,5 +8,7 @@ namespace Data.EF.Dice.Faces
{
public class NumberFaceEntity
{
public Guid Id { get; set; }
public int Value { get; set; }
}
}

Loading…
Cancel
Save