This commit is contained in:
mmrbnjd
2024-11-16 15:08:18 +03:30
parent 6fe0cee3ef
commit ae654b1ffe
15 changed files with 117 additions and 124 deletions

View File

@@ -10,6 +10,7 @@
public string Time { get; set; }
public bool Status { get; set; }
public string? Tags { get; set; }
public string? Description { get; set; }
public string? DescriptionTag { get; set; }
public string? keywordsTag { get; set; }
}
}

View File

@@ -79,7 +79,8 @@ namespace Back.Services
Text=s.Text,
Time=s.Time,
Tags= s.Tags,
Description=s.Description
DescriptionTag=s.DescriptionTag,
keywordsTag=s.keywordsTag
}).FirstOrDefaultAsync();
return result;
}