TheHitchhiker
❔ How to return image url in response ?
public class Picture : BaseEntity
{
public string Name { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public DateTime? AddedAt { get; set; } = DateTime.Now;
}
public class PictureResponse
{
public string URL { get; set; }
public int? Height { get; set; }
public int? Width { get; set; }
public DateTime? AddedAt { get; set; } = DateTime.Now;
}
how to map imagename to complete path eg. api/images/someiamge.png
?
or how should i even do that ?2 replies
❔ Git - how to undo dumb stuff
im using visual studio 2022 and it gone like this :
1- i made a commit with wrong staged files (all of them)
2- i tried to revert commit
3- my changes to all files've gone and i'm left with aother unrevertable revert commit
4- i didnt push any commit yet
how to remove last two commits and have my changes back?
9 replies