A first flow was saved to disk

This commit is contained in:
Paul Schneider 2019-06-27 10:30:28 +01:00
commit 4d48966d24
13 changed files with 363 additions and 241 deletions

View file

@ -48,11 +48,8 @@ namespace Yavsc.Abstract.FileSystem
{
UserDirectoryInfo di = new UserDirectoryInfo(UserFilesDirName, user.Identity.Name, subdir);
return di;
}
}
public static class FileSystemConstants

View file

@ -0,0 +1,11 @@
namespace Yavsc.Models.Messaging
{
public class PublicStreamInfo
{
public long id { get; set; }
public string sender { get; set; }
public string title { get; set; }
public string url { get; set; }
public string mediaType { get; set; }
}
}